home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 April / CHIP CD (4 - 2007).iso / admin / secure / wireshark-setup-0.99.5.exe / example_snmp_users_file < prev    next >
Text File  |  2007-02-01  |  1KB  |  35 lines

  1. # this is an example snmp_users_file
  2. #
  3. # This can be used to enable the snmp dissector to authenticate and decrypt 
  4. # SNMPv3 packets.
  5. #
  6. # Its location should be specified in the preferences of the SNMP protocol.
  7. #
  8. # comments start with a # and finish at the end of line
  9. # empty lines are ignored 
  10. #
  11. # records are separated by whitespace
  12. # engine-id username auth_pass priv_pass auth_proto priv_proto
  13. # fileds are separated by whitespace
  14. # engine-id, username and passwds can be either "double quoted" or hex
  15. # double quoted strings are c-style strings and take escape chars
  16. # a '*' as engine-id matches any any given engine-id
  17. # auth_proto can be either MD5 or SHA1 (SHA works too), defaults to MD5.
  18. # priv_proto can be either DES or AES Defaults to DES if not given
  19. # protocols are case-insensitive (md5 == MD5)
  20. # first match wins (i.e. have localized entries before those for * )
  21.  
  22. 80001F888059DC486145A26322 "pippo" "pippoxxx" "PIPPOxxx" MD5 DES
  23.  
  24. # pippo for any engine will use DES and MD5
  25. * "pippo" "pippoyyy" "PIPPOyyy"
  26.  
  27. # SHA + DES
  28. 80001F888059DC486145A26322 "pluto" "plutoxxx" "PLUTOxxx" SHA
  29.  
  30. # SHA + AES
  31. 80001F888059DC486145A26322 "topolino" "topolino" "TOPOLINO" SHA AES
  32.  
  33. # MD5 + AES
  34. 80001F888059DC486145A26322 "paperino" "paperino" "PAPERINO" AES
  35.